the ABI version was already bumped in #62, does not need to be bumped again in #70
authorSteven G. Johnson <stevenj@mit.edu>
Wed, 13 Jul 2016 15:00:17 +0000 (11:00 -0400)
committerSteven G. Johnson <stevenj@mit.edu>
Wed, 13 Jul 2016 15:00:17 +0000 (11:00 -0400)
CMakeLists.txt
MANIFEST
Makefile

index d8b73728918a72d5d1ed445080226331887d461f..ff0c819a3c302a2656fbefa94e1717395b5b7886 100644 (file)
@@ -7,7 +7,7 @@ disallow_intree_builds()
 project (utf8proc C)
 
 # Be sure to also update these in Makefile!
-set(SO_MAJOR 3)
+set(SO_MAJOR 2)
 set(SO_MINOR 0)
 set(SO_PATCH 0)
 
index 3dbf43ddb6c47d62aaa9b809868171604ba9378b..f79d541d9da4fd52e6af209fc15b8d6c8af950d1 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,6 +2,6 @@ include/
 include/utf8proc.h
 lib/
 lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.3.0.0
-lib/libutf8proc.so.3 -> libutf8proc.so.3.0.0
-lib/libutf8proc.so.3.0.0
+lib/libutf8proc.so -> libutf8proc.so.2.0.0
+lib/libutf8proc.so.2 -> libutf8proc.so.2.0.0
+lib/libutf8proc.so.2.0.0
index 2b6f58e911bcad08ecb22ca8b46b58c6e6c68f99..ff5e77142b9c25b8afb3dc15f6bba5a0dea9fac8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS
 # not API compatibility: MAJOR should be incremented whenever *binary*
 # compatibility is broken, even if the API is backward-compatible
 # Be sure to also update these in MANIFEST and CMakeLists.txt!
-MAJOR=3
+MAJOR=2
 MINOR=0
 PATCH=0